std::basic_fstream::swap
From Cppreference
< cpp | io | basic fstream
| C++ Standard Library | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||
| Input/output library | ||||||||||||||||||||||||
| std::basic_fstream | ||||||||||||||||||||||||
| ||||||||||||||||||||||||
| void swap( basic_fstream& other );
| (C++0x) | |
Exchanges the state of the stream with those of other.
This is done by calling basic_istream<CharT, Traits>::swap(other) and rdbuf->swap(other->rdbuf).
Contents |
Parameters
| other | - | stream to exchange the state with |
Return value
(none)
Example
| This section is incomplete |
See also
| moves the file stream (public member function) | ||